home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / dev / src / wangisrc.lha / wangi / z / AGPrefs / Install_AGPrefs < prev    next >
Text File  |  1995-07-16  |  618b  |  33 lines

  1. ;$VER: AGP_install 1.0
  2. ;$AUTHOR: Lee Kindness
  3.  
  4. (set name
  5.     (askdir
  6.         (prompt 'Where will AmigaGuide preferences be copied to?')
  7.         (help 'This is where you want the AmigaGuide preference program to be located. It should normally be in your prefs directory\n\n'@askdir-help)
  8.         (default 'SYS:Prefs')
  9.     )
  10. )
  11.  
  12. (set @default-dest name)
  13.  
  14. (copylib
  15.     (prompt "Copying Amigaguide preference editor")
  16.     (help @copylib-help)
  17.     (source 'AmigaGuide')
  18.     (dest name)
  19.     (infos)
  20.     (noposition)
  21.     (confirm)
  22. )
  23.  
  24. (transcript '\nAGPrefs installed to '@default-dest'\n')
  25.  
  26. (exit 'I hope you find AmigaGuide preferences useful.\n    LSK _\\\\//')
  27.  
  28.     
  29.  
  30.  
  31.  
  32.  
  33.